home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / startup.sql < prev    next >
Text File  |  2000-05-12  |  1KB  |  27 lines

  1. /* RCSVER $Id: startup.sql,v 1.3 2000-02-08 13:32:21-06 randy Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        startup.sql 
  6. * Date:        02/23/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the startup table. startup contains information       
  9. *        from the startup farebox record.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE startup
  13. (
  14.     det_seq_num    NUMBER(38)    /* pointer to mstrrec record */
  15.         CONSTRAINT ref1_startup REFERENCES mstrrec(det_seq_num),
  16.     farebox_glid    NUMBER(38),    /* Farebox ID from global_id */
  17.         conv_date       DATE,           /* Date for this record */
  18.     su_date        DATE,        /* Date/time of actual startup */
  19.     su_dow        NUMBER(1),    /* day of week (0-6) */
  20.     su_tz        NUMBER(38),    /* timezone */
  21.     su_isdst    NUMBER(1),    /* Is this daylight savings time? */
  22.     rs_version    NUMBER(38),    /* Record Structure version */
  23.     config_num    NUMBER(38),    /* Data configuration number */
  24.     bus_id    NUMBER(38),    /* Bus id, not the glid */
  25.     CONSTRAINT pk_startup PRIMARY KEY (det_seq_num)
  26. );
  27.